home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE14 / SYSTEM / FORMDEMO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-01  |  226 b   |  13 lines

  1. program FormDemo;
  2.  
  3. uses WinTypes, WinProcs;
  4.  
  5. function SHFormatDrive (Wnd: hWnd; Drive, Size, Options: Integer): Integer;
  6. far; external 'SHELL';
  7.  
  8. { Full format of drive A }
  9.  
  10. begin
  11.   SHFormatDrive (0, 0, 0, 0);
  12. end.
  13.